How to create a contract with Solidity

68

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract MyContract {

function helloWorld() public pure returns (string memory) {

return "Hello, World!";

}

}

Comments

Submit
0 Comments